home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / LocaleObjects.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  79 lines

  1. /*
  2.      File:        LocaleObjects.idl
  3.  
  4.      Contains:    LocaleObject Manager interfaces
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __LOCALEOBJECTS_IDL__
  19. #define __LOCALEOBJECTS_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __TEXTOBJECTS_IDL__
  28. #include <TextObjects.idl>
  29. #endif
  30. #ifndef __TEXTCOMMON_IDL__
  31. #include <TextCommon.idl>
  32. #endif
  33. #ifndef __FILEMANAGERTYPES_IDL__
  34. #include <FileManagerTypes.idl>
  35. #endif
  36.  
  37. #ifdef __SOMIDL__
  38.  
  39. #if FOR_SYSTEM8_PREEMPTIVE
  40. /* Locale errors*/
  41. typedef OSStatus                LocaleErrors;
  42.  
  43. typedef UInt16                    LocaleIterateOp;
  44.  
  45. typedef SInt16                    LocaleNameIdentifier;
  46.  
  47. typedef LocaleNameIdentifier    LocaleDefaultValue;
  48.  
  49. typedef UInt16                    LocaleObjectContext;
  50.  
  51. typedef OSType                    LocaleDataTag;
  52.  
  53. typedef UInt32                    LocaleObjectTagIndex;
  54.  
  55. typedef OpaquePtr                LocaleRef;
  56.  
  57. typedef OpaquePtr                LocaleIteratorReference;
  58.  
  59. typedef OpaquePtr                LocaleObjectRef;
  60.  
  61. typedef SOMLargeStruct            NameValuePair;                /* Derived from a struct of 12 bytes in size */
  62.  
  63. typedef OpaquePtr                NameValuePairPtr;            /* Substituted OpaquePtr for ``NameValuePair*'' */
  64.  
  65. typedef SOMLargeStruct            NameTableEntry;                /* Derived from a struct of 8 bytes in size */
  66.  
  67. /*
  68.  The void * returned as the dataPtr and the LocaleObjectRef * both
  69.  point into read-only memory.  Use const to invoke the compiler's help
  70.  in preventing write-accesses to that data.
  71. */
  72. #endif
  73. /* FOR_SYSTEM8_PREEMPTIVE*/
  74.  
  75. #endif /* __SOMIDL__ */
  76.  
  77. #endif /* __LOCALEOBJECTS_IDL__ */
  78.  
  79.